Nginx : Install
2016/07/07 |
Install fast HTTP Server "Nginx" and configure HTTP Server with it.
|
|
[1] | Install Nginx. |
root@www:~# apt-get -y install nginx
|
[2] | Configure Nginx. |
root@www:~#
vi /etc/nginx/sites-available/default # line 38: change to your own hostname server_name www.srv.world ;
systemctl start nginx root@www:~# systemctl enable nginx |
[3] | Access to the default page of Nginx from a Client with Web browser and it's OK if the following page are shown. |